home *** CD-ROM | disk | FTP | other *** search
- Path: ns.ftns.no!news
- From: kenneth@norconnect.no (Kenneth C. Nilsen)
- Newsgroups: comp.sys.amiga.programmer
- Subject: Re: OpenScreen (need help)
- Date: 16 Feb 1996 13:06:27 GMT
- Organization: A poorly-installed InterNetNews site
- Message-ID: <1048.6620T770T1677@norconnect.no>
- References: <robert.44.00164AD6@southern.co.nz>
- NNTP-Posting-Host: norconnect.no
- X-Newsreader: THOR 2.22 (Amiga;TCP/IP)
-
- The 06-Feb-96 20:13:12, Robert Read wrote in msg n/a :
-
- >I have an Amiga 500 with ECS Agnus and Denise and want to open
- >a SuperHires screen in assembler.
- >What value do I use in the OpenScreen operation?
-
- PAL_MONITOR_ID = $21000
-
- SUPER_KEY = $8020
- SUPERLACE_KEY = $8024
-
- So your ID would be:
-
- SMode = SUPER_KEY!PAL_MONITOR_ID ;for superhires nonlace
- SModeLace = SUPERLACE_KEY!PAL_MONITOR_ID ;for superhires lace
-
- If you uses NTSC use NTSC_MONITOR_ID instead of PAL_MONITOR_ID which will be
-
- NTSC_MONITOR_ID = $11000
-
- ! Remember to OR the values (!)
-
- sub.l a0,a0
- lea Tags(pc),a1
- Call OpenScreentaglist
-
- ...
-
- Tags dc.l SA_DisplayID,SMode
- dc.l ... , ...
-
- dc.l END_TAG,END_TAG ;= 0,0
-
- This information can also be obtained in the graphics/modeid.i include.
-
-
- ---
- Worldwide Solutions AS \ Kenneth C. Nilsen (kenneth@norconnect.no)
- Advisor, developer \/\/\/\ http://www.norconnect.no/~kenneth/
- coordinator \
-
-